/* Plugin Name: Custom Scripts Plugin URI: http://cysy.com Description: Allows us to add custom scripts to use within the Oxygen Builder. Version: 1.0 Author: CYSY Author URI: http://cysy.com */ /*----------------------------------------------------------------------------------- LOAD JQUERY & OTHER PLUGIN ASSETS -------------------------------------------------------------------------------------*/ function cysy_replace_jquery() { // DEREGISTER BUILT-IN JQUERY wp_deregister_script( 'jquery' ); // REGISTER LOCAL JQUERY wp_register_script( 'jquery', CYSY_PLUGIN_PATH . 'js/jquery-2.2.4.min.js' ); // ENQUEUE CUSTOM JQUERY wp_enqueue_script( 'jquery' ); } //add_action( 'wp_enqueue_scripts', 'cysy_replace_jquery' ); // GET REGISTERED JQUERY function cysy_get_jquery() { wp_enqueue_script('jquery'); } //add_action('init', 'cysy_get_jquery'); // DEFINE PLUGIN FILE PATH define('CYSY_PLUGIN_PATH', WP_PLUGIN_URL . '/' . plugin_basename(dirname(__FILE__)) . '/'); // ENQUEUE SLICK STYLESHEET wp_enqueue_style( 'slick-styles', CYSY_PLUGIN_PATH . 'css/slick.css' ); // ENQUEUE SLICK JAVASCRIPT FILE wp_enqueue_script('slick', CYSY_PLUGIN_PATH . 'js/slick.min.js', array('jquery')); // ENQUEUE SELECT2 STYLESHEET wp_enqueue_style( 'select2-styles', CYSY_PLUGIN_PATH . 'css/select2.css' ); // ENQUEUE SELECT2 SCRIPT wp_enqueue_script( 'select2', CYSY_PLUGIN_PATH . 'js/select2.min.js', array('jquery')); // ENQUEUE LIGHTBOX STYLESHEET wp_enqueue_style( 'lightbox-styles', CYSY_PLUGIN_PATH . 'css/lightbox.css' ); // ENQUEUE LIGHTBOX JAVASCRIPT FILE wp_enqueue_script('lightbox-scripts', CYSY_PLUGIN_PATH . 'js/lightbox.min.js', null, null, true); // ENQUEUE PLUGIN JAVASCRIPT FILE wp_enqueue_script('custom-scripts', CYSY_PLUGIN_PATH . 'js/scripts.js', null, null, true); /*----------------------------------------------------------------------------------- ADD CUSTOM FUNCTIONS BELOW HERE -------------------------------------------------------------------------------------*/ // ****************************************************************************************************************** // REGISTER CUSTOM IMAGE SIZES FOR MEDIA LIBRARY // ****************************************************************************************************************** if( function_exists( 'add_theme_support' ) ) { add_theme_support( 'post-thumbnails' ); // ADDS SUPPORT FOR FEATURED IMAGES add_image_size( 'small', 480, 480, false ); // SMALL PHOTOS add_image_size( 'small-cropped', 480, 320, true ); // SMALL PHOTOS (CROPPED) add_image_size( 'medium', 800, 800, false ); // MEDIUM PHOTOS add_image_size( 'medium-cropped', 800, 600, true ); // MEDIUM PHOTOS (CROPPED) add_image_size( 'large', 1024, 1024, false ); // LARGE PHOTOS add_image_size( 'large-cropped', 1024, 800, true ); // LARGE PHOTOS (CROPPED) add_image_size( 'extra-large', 1200, 1200, false ); // EXTRA LARGE PHOTOS add_image_size( 'extra-large-cropped', 1200, 1000, true ); // EXTRA LARGE PHOTOS (CROPPED) } // ****************************************************************************************************************** // UPDATE NATIVE WP GALLERY SHORTCODE TO USE LIGHTBOX // ****************************************************************************************************************** function cysy_photo_gallery( $attr ) { $post = get_post(); static $instance = 0; $instance++; if( !empty( $attr[ 'ids' ] ) ) { if( empty( $attr[ 'orderby' ] ) ) $attr[ 'orderby' ] = 'post__in'; $attr[ 'include' ] = $attr[ 'ids' ]; } if( empty( $attr[ 'columns' ] ) ) $attr[ 'columns' ] = 3; if( empty( $attr[ 'size' ] ) ) $attr[ 'size' ] = 'small-cropped'; $output = apply_filters( 'post_gallery', '', $attr ); if( $output != '' ) { return $output; } if( isset( $attr[ 'orderby' ] ) ) { $attr[ 'orderby' ] = sanitize_sql_orderby( $attr[ 'orderby' ] ); if( !$attr[ 'orderby' ] ) { unset( $attr[ 'orderby' ] ); } } extract( shortcode_atts( array( 'order' => 'ASC', 'orderby' => 'menu_order ID', 'id' => $post->ID, 'itemtag' => 'dl', 'icontag' => 'dt', 'captiontag' => 'dd', 'columns' => $attr[ 'columns' ], 'size' => $attr[ 'size' ], 'include' => '', 'exclude' => '' ), $attr) ); $id = intval( $id ); if( 'RAND' == $order ) { $orderby = 'none'; } if( !empty( $include ) ) { $_attachments = get_posts( array( 'include' => $include, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => $order, 'orderby' => $orderby ) ); $attachments = array(); foreach( $_attachments as $key => $val ) { $attachments[ $val->ID ] = $_attachments[ $key ]; } } elseif( !empty( $exclude ) ) { $attachments = get_children( array( 'post_parent' => $id, 'exclude' => $exclude, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => $order, 'orderby' => $orderby ) ); } else { $attachments = get_children( array( 'post_parent' => $id, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => $order, 'orderby' => $orderby ) ); } if( empty( $attachments ) ) { return ''; } if( is_feed() ) { $output = "\n"; foreach ( $attachments as $att_id => $attachment ) { $output .= wp_get_attachment_link( $att_id, $size, true ) . "\n"; } return $output; } $itemtag = tag_escape( $itemtag ); $captiontag = tag_escape( $captiontag ); $icontag = tag_escape( $icontag ); $valid_tags = wp_kses_allowed_html( 'post' ); if( !isset( $valid_tags[ $itemtag ] ) ) { $itemtag = 'dl'; } if( !isset( $valid_tags[ $captiontag ] ) ) { $captiontag = 'dd'; } if( !isset( $valid_tags[ $icontag ] ) ) { $icontag = 'dt'; } $columns = intval( $columns ); $itemwidth = $columns > 0 ? (100/$columns) : 100; $selector = "gallery-{$instance}"; $gallery_style = $gallery_div = ''; if( apply_filters( 'use_default_gallery_style', true ) ) { /* see gallery_shortcode() in wp-includes/media.php */ $gallery_style = ""; } $size_class = sanitize_html_class( $size ); $gallery_div = "